/* =======================
   CONTACTO – GGE
======================= */

/* HERO */
.contact-hero{
  position: relative;
  max-width: 1100px;
  margin: 20px auto 10px;
  padding: 30px 24px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #333 0, #050505 45%, #000 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.9),
    0 0 26px rgba(255, 215, 0, 0.15);
}

.contact-hero-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.contact-hero-text{
  flex: 1 1 260px;
  min-width: 260px;
}

.contact-hero h1{
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--gge-gold);
}

.contact-hero p{
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-destaque{
  color: var(--gge-gold);
  font-weight: 600;
}

/* Badges */
.contact-badges{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.6);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-badge i{
  font-size: 0.85rem;
}

/* Logo lateral */
.contact-hero-logo{
  flex: 0 0 220px;
  text-align: center;
}

.contact-logo-frame{
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 3px solid var(--gge-gold);
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
}

.contact-logo-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-tagline{
  font-size: 0.85rem;
  color: #ddd;
  opacity: 0.9;
}

/* Layout principal */
.contact-layout{
  max-width: 1100px;
  margin: 10px auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}

.contact-column{
  background: rgba(8, 8, 8, 0.95);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
}

.contact-column h2{
  color: var(--gge-gold);
  margin-bottom: 8px;
}

.contact-column-text{
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Formulario */
.contact-form{ margin-top: 8px; }

.contact-field{
  text-align: left;
  margin-bottom: 14px;
}

.contact-field label{
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--gge-gold);
}

.contact-field input,
.contact-field textarea{
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #101010;
  color: #fff;
  font-size: 0.9rem;
}

.contact-field input:focus,
.contact-field textarea:focus{
  outline: none;
  border-color: var(--gge-gold);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

.contact-btn{
  margin-top: 4px;
  background-color: var(--gge-gold);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-btn:hover{
  background: #ffe470;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.8);
}

/* Panel info y mapa */
.contact-panel{
  background: radial-gradient(circle at top, #1a1a1a 0, #050505 65%);
  border-radius: 14px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  margin-bottom: 16px;
}

.contact-panel h2,
.contact-panel h3{
  color: var(--gge-gold);
  margin-bottom: 10px;
}

/* Lista de info */
.contact-info-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li{
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.contact-info-list .icon{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--gge-gold);
  margin-top: 2px;
}

/* Mapa */
.contact-map-panel .map-container{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
}

.contact-map-panel iframe{
  width: 100%;
  height: 260px;
}

/* Social */
.contact-social-section{
  text-align: center;
  margin-bottom: 40px;
}

.contact-social-section h2{
  color: var(--gge-gold);
  margin-bottom: 10px;
}

.contact-social-section p{ margin-bottom: 10px; }

.social-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn-social{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-social i{ font-size: 1rem; }

.btn-social.instagram{ background: #E1306C; }
.btn-social.facebook{ background: #1877F2; }
.btn-social.tiktok{ background: #010101; }
.btn-social.youtube{ background: #FF0000; }
.btn-social.linkedin{ background: #0A66C2; }
.btn-social.whatsapp{ background: #25D366; }

.btn-social:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  opacity: 0.95;
}

/* Responsive contacto */
@media (max-width: 900px){
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-hero-inner{ flex-direction: column; align-items: flex-start; }
  .contact-hero-logo{ align-self: center; }
}

@media (max-width: 600px){
  .contact-hero{ padding: 22px 16px; }
  .contact-hero h1{ font-size: 1.7rem; }
  .contact-map-panel iframe{ height: 220px; }
  .contact-column{ padding: 16px 14px; }
}

